Attestation

@Serializable
data class Attestation(val format: VerifierInfo.Attestation.Format, val data: VerifierInfo.Attestation.Data, val credentialIds: CredentialQueryIds? = null) : Serializable(source)

Constructors

Link copied to clipboard
constructor(format: VerifierInfo.Attestation.Format, data: VerifierInfo.Attestation.Data, credentialIds: CredentialQueryIds? = null)

Types

Link copied to clipboard
@Serializable
value class Data(val value: JsonElement) : Serializable
Link copied to clipboard
@Serializable
value class Format(val value: String) : Serializable

Properties

Link copied to clipboard
@SerialName(value = "credential_ids")
val credentialIds: CredentialQueryIds? = null
Link copied to clipboard
@SerialName(value = "data")
@Required
val data: VerifierInfo.Attestation.Data
Link copied to clipboard
@SerialName(value = "format")
@Required
val format: VerifierInfo.Attestation.Format